home *** CD-ROM | disk | FTP | other *** search
/ Deutsche Edition 1 / Deutsche Edition 1.iso / amok / 081-090 / amok88 / arexxbox / test2.lha / test2 / makefile.gnu < prev    next >
Makefile  |  1993-05-18  |  592b  |  33 lines

  1. #
  2. # GNU-makefile for test2
  3. #
  4.  
  5. #
  6. # ATT: In "inline/stubs.h" you need to add the line
  7. #    struct Isrvstr;
  8. # before compiling to avoid warnings!
  9. #
  10.  
  11. CFLAGS = -O2
  12. LIBS = -lc -lamiga
  13.  
  14. #
  15.  
  16. OBJS2 = test2.o rx_test2.o rx_test2_rxcl.o rx_test2_rxif.o
  17.  
  18. RXIF = /rxif/rx_alias.c /rxif/rx_cmdshell.c /rxif/rx_disable.c \
  19.     /rxif/rx_enable.c /rxif/rx_fault.c /rxif/rx_help.c \
  20.     /rxif/rx_rx.c
  21.  
  22. test2: $(OBJS2)
  23.     gcc -o test2 $(OBJS2) $(LIBS)
  24.  
  25. rx_test2.o: rx_test2.c rx_test2.h
  26.  
  27. rx_test2_rxif.o: rx_test2_rxif.c rx_test2.h $(RXIF)
  28.  
  29. rx_test2_rxcl.o: rx_test2_rxcl.c rx_test2.h
  30.  
  31. test2.o: test2.c test2.h rx_test2.h
  32.  
  33.